home *** CD-ROM | disk | FTP | other *** search
- #ifndef _SCROLLSTUFF_
- #define _SCROLLSTUFF_
-
- #define kVRef 0
- #define kHRef 1
-
- #define kTextWidth 10
- #define kMaxColumns 160
-
-
- ControlHandle hScrollCont(WindowPtr window);
- ControlHandle vScrollCont(WindowPtr window);
- long sign(long longVar);
- short LinesInText(TEHandle theTE);
- void MoveText(WindowPtr window,ControlHandle theControl);
- void AdjustScrollBar(WindowPtr window);
- void ScrollChar(WindowPtr window,short charPos,Boolean toBottom);
- void CheckInsertion(WindowPtr window);
- pascal void scroll_action(ControlHandle scrollBar,short part);
- void DoScrollers(ControlHandle scrollBar,short part,Point localMouse);
- pascal Boolean AutoScroll(void);
-
- #endif _SCROLLSTUFF_